Stored Procedures [dbo].[BAEImisMemberTypesGetAll]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
SQL Script
-- =============================================
-- Author:        <Author,,Name>
-- Create date: <Create Date,,>
-- Description:    <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[BAEImisMemberTypesGetAll]
    -- Add the parameters for the stored procedure here
AS
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Insert statements for procedure here
    SELECT * FROM Member_Types;


-----------------------------------


SET ANSI_NULLS OFF

GO
Uses